home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / picklist / testlb.dpr < prev    next >
Text File  |  1996-04-08  |  259b  |  15 lines

  1. program Testlb;
  2.  
  3. uses
  4.   Forms,
  5.   Testpick in 'TESTPICK.PAS' {Form1},
  6.   Od_test in 'OD_TEST.PAS' {PoemDialog};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.CreateForm(TPoemDialog, PoemDialog);
  13.   Application.Run;
  14. end.
  15.